{% extends 'dashboards/base_dashboard.html' %} {% load humanize %} {% block extra_head %} {% endblock %} {% block stats %}
| Title | Assigned To | Status | Due Date |
|---|---|---|---|
| {{ task.title|truncatechars:30 }} {% if task.due_date < now.date and task.status != 'completed' %} Overdue {% endif %} | {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} | {{ task.get_status_display }} | {{ task.due_date|date:"M d, Y" }} |
| No tasks found | |||
| Title | Section | Assigned To | Status | Due Date |
|---|---|---|---|---|
| {{ task.title }} | {{ task.assigned_to.department.name|default:"-" }} | {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} | {{ task.get_status_display }} | {{ task.due_date|date:"M d, Y" }} |
| No tasks found in your department | ||||
| Name | Section | Actions | |
|---|---|---|---|
| {{ head.get_full_name|default:head.username }} | {{ head.email }} | {{ head.department.name|default:"-" }} | {% if user.is_staff or user.department %} {% else %} No actions available {% endif %} |
| No heads of sections found. {% if user.department %} Add a head of section. {% endif %} | |||